home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML ConsoleMax.sea
/
XML ConsoleMax
/
Required
/
swingall.jar
/
javax
/
swing
/
undo
/
UndoableEdit.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
1999-07-15
|
578 b
|
26 lines
package javax.swing.undo;
public interface UndoableEdit {
boolean addEdit(UndoableEdit var1);
boolean canRedo();
boolean canUndo();
void die();
String getPresentationName();
String getRedoPresentationName();
String getUndoPresentationName();
boolean isSignificant();
void redo() throws CannotRedoException;
boolean replaceEdit(UndoableEdit var1);
void undo() throws CannotUndoException;
}